* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body{
    margin: 0px;
    padding: 0px;
    background-color: rgb(0, 0, 0);
    font-family: "Hanken Grotesk", sans-serif;
  }
     /* HEADER*/
     header {
      width: 100%;
      display: flex;
      flex-direction: row;
      position:sticky;
      background-color: #000000;
      z-index: 2;
      top : 0;


 
    }
   
   
    .toto2{
      width: 30%;
    }
   
    .logo {
      width: 80px;
      height: 80px;
      margin-left: 40px;
      margin-top: 5px ;
    }
 
    body {
      background-color: black;
      color: white;
      text-align: center;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      min-height: 100vh;
    }
   
 
    .logo {
      position: absolute;
      width: 80px;
      height: 80px;
      margin-right: 20px;
      left: 50px;
      transition: filter 0.2s ease;
      filter: none;
    }
   
    .logo:hover{
      filter: invert(43%) sepia(66%) saturate(7238%) hue-rotate(3deg) brightness(102%) contrast(105%);
     
    }
 
   nav{
    justify-content: center;
    align-items: center;
    margin-left: 80px;
   }
   
    nav ul{
      display: flex;
      flex-direction: row;
      justify-content: center;
       gap: 30px;
       margin: 10px 0px;
      width: 100%;
     
 
    }
   
    nav ul li {
      color: white;
      list-style: none;
      font-weight: bold;
      font-size: 20px;
      padding: 20px 10px;
      transition: color 0.2s ease;
   
    }
   
 
    nav ul li a {
      color: white  ;
      text-decoration: none;
      transition: color 0.2s ease;
     
    }
 
    nav ul li a:hover {
      color: #ff3D00;
    }
   
     /* FIN DU HEADER*/






 

  .TITRE {
    position: relative;
    text-align: center;
    margin-top:   97px;
    width: 70%;
    height: 850px;
    background-image: url(fond2.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    z-index: 1;
  }
 
  .TITRE h1 {
    font-size: 100px;
    font-weight: bold;
    color: white;
    text-shadow: 0 0 7px rgba(255, 255, 255, 0.279),
                 0 0 10px rgba(255, 255, 255, 0.6);
    margin: 0;
  }
 
  .ptitre {
    font-size: 20px;
    color: white;
    margin-top: 10px;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
  }

.titre-agence{
  color: rgb(255, 255, 255);
  text-align: left;
  font-size: 30px;
  text-shadow: 0 0 7px rgba(255, 255, 255, 0.279),
               0 0 10px rgba(255, 255, 255, 0.6);
}

.photos-equipe {
  display: flex;
  justify-content: space-between; /* Ajoute plus d'espace entre les images */
  align-items: center;
  width: 80%;
  padding: 10px; /* Ajoute un peu d'espace autour du conteneur */
}

.photos-equipe img {
  flex: 0 0 auto; /* Fixe la taille des images */
  width: 60%; /* Les images sont plus petites */
  height: auto;
  margin: 0 10px; /* Ajoute un espace entre les images */
  border-radius: 60px; /* Optionnel : arrondit légèrement les coins */
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}








.photo a {
  display: inline-block;
  margin-top: 18px;
  margin: 18px;
  font-size: 32px;
  color: #ffffff;
  text-decoration: none;
  font-weight: bold;
  background-color: #000000;
  border-radius: 15px;
}

.photo a:hover {
  color: #ff3D00;
}

.popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  justify-content: center;
  align-items: center;
}

.popup:target {
  display: flex;
}

.popup-content {
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  width: 500px;
  height: 700px;
}

.popup-content .close {
  text-decoration: none;
  font-size: 50px;
  font-weight: bold;
  color: #333;
  margin-left: 400px;
  margin-bottom: 20px;
  padding: 20px;

}

.popup-content .close:hover {
  color: #ff3D00;
}

.popup-content p {
  font-size: 16px;
  color: #333;
}


.nos-services {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 50px 10%;
  background-color: #000;
  color: #fff;
  text-align: left;
}

.service-content {
  display: flex;
  gap: 30px;
  align-items: center;
}

.service-image {
  width: 50%;
  border-radius: 15px;
  box-shadow: 0px 4px 8px rgba(255, 255, 255, 0.2);
}

.service-text {
  max-width: 40%;
}

.service-text h2 {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 20px;
  text-shadow: 0 0 7px rgba(255, 255, 255, 0.279), 0 0 10px rgba(255, 255, 255, 0.6);
}

.service-text p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.service-btn {
  display: inline-block;
  background-color: #ff3D00;
  color: #fff;
  padding: 10px 20px;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.service-btn:hover {
  background-color: #ff6D30;
}



.nos-realisations {
  display: flex;
  justify-content: space-between;
  flex-direction: row;
  align-items: center;
  padding: 50px 10%;
  background-color: #000;
  color: #fff;
  text-align: left;
}

.realisation-content {
  display: flex;
  flex-direction: row;
  gap: 30px;
  align-items: center;
}

.realisation-text {
  max-width: 40%;
}

.realisation-text h2 {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 20px;
  text-shadow: 0 0 7px rgba(255, 255, 255, 0.279), 0 0 10px rgba(255, 255, 255, 0.6);
}

.realisation-text p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.realisation-btn {
  display: inline-block;
  background-color: #ff3D00;
  color: #fff;
  padding: 10px 20px;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.realisation-btn:hover {
  background-color: #ff6D30;
}

.realisation-image {
  width: 50%;
  border-radius: 15px;
  box-shadow: 0px 4px 8px rgba(255, 255, 255, 0.2);
}








footer {
  background-color: #ff3d00;
  color: white;
  width: 100%;
  padding: 20px 0;
}


.footer-bas {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}


.footer-logo {
  width: 100px;
}


.footer-text {
  text-align: right;
}


.footer-link {
  text-decoration: none;
  color: white;
  font-size: 16px;
  display: block;
  margin-bottom: 5px;
}


.footer-link:hover {
  text-decoration: underline;
}































































































































@media (max-width: 768px) {


  html, body{
      margin: 0px;
      padding: 0px;
      background-color: rgb(0, 0, 0);
      font-family: "Hanken Grotesk", sans-serif;
    }






    header {
      width: 100%;
      display: flex;
      flex-direction: row;
      position:fixed;
      background-color: #000000;
      z-index: 2;
      top : 0;
 
    }
 
    .toto2{
      width: 30%;
    }
   
    .logo {
      width: 80px;
      height: 80px;
      margin-left: 40px;
      margin-top: 5px ;
    }
 
    body {
      background-color: black;
      color: white;
      text-align: center;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      min-height: 100vh;
    }
   
 
    .logo {
      position: absolute;
      width: 80px;
      height: 80px;
      margin-right: 20px;
      left: 50px;
    }
   
 
   
   
    nav ul{
      display: flex;
      flex-direction: row;
      justify-content: center;
       gap: 30px;
       margin: 10px 0px;
      width: 100%;
     
 
    }
   
    nav ul li {
      color: white;
      list-style: none;
      font-weight: bold;
      font-size: 20px;
      padding: 20px 10px;
      transition: color 0.2s ease;
   
    }
   
 
    nav ul li a {
      color: white  ;
      text-decoration: none;
      transition: color 0.2s ease;
     
    }
 
    nav ul li a:hover {
      color: #ff3D00;
    }
   
 
    .TITRE {
      position: relative;
      text-align: center;
      margin-top:   97px;
      width: 70%;
      height: 850px;
      background-image: url(fond2.png);
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      display: flex;
      flex-direction: column;
      justify-content: space-evenly;
      align-items: center;
      z-index: 1;
    }
   
    .TITRE h1 {
      font-size: 100px;
      font-weight: bold;
      color: white;
      text-shadow: 0 0 7px rgba(255, 255, 255, 0.279),
                   0 0 10px rgba(255, 255, 255, 0.6);
      margin: 0;
    }
   
    .ptitre {
      font-size: 20px;
      color: white;
      margin-top: 10px;
      text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
    }
 
  .titre-agence{
    color: rgb(255, 255, 255);
    text-align: left;
    font-size: 30px;
    text-shadow: 0 0 7px rgba(255, 255, 255, 0.279),
                 0 0 10px rgba(255, 255, 255, 0.6);
  }
 
  .photos-equipe {
    display: flex;
    justify-content: space-between; /* Ajoute plus d'espace entre les images */
    align-items: center;
    width: 80%;
    padding: 10px; /* Ajoute un peu d'espace autour du conteneur */
  }
 
  .photos-equipe img {
    flex: 0 0 auto; /* Fixe la taille des images */
    width: 60%; /* Les images sont plus petites */
    height: auto;
    margin: 0 10px; /* Ajoute un espace entre les images */
    border-radius: 60px; /* Optionnel : arrondit légèrement les coins */
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  }
 
 
 
 
 
 
 
 
  .photo a {
    display: inline-block;
    margin-top: 18px;
    margin: 18px;
    font-size: 32px;
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
    background-color: #000000;
    border-radius: 15px;
  }
 
  .photo a:hover {
    color: #ff3D00;
  }
 
  .popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    justify-content: center;
    align-items: center;
  }
 
  .popup:target {
    display: flex;
  }
 
  .popup-content {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    width: 500px;
    height: 700px;
  }
 
  .popup-content .close {
    text-decoration: none;
    font-size: 50px;
    font-weight: bold;
    color: #333;
    margin-left: 400px;
    margin-bottom: 20px;
    padding: 20px;
 
  }
 
  .popup-content .close:hover {
    color: #ff3D00;
  }
 
  .popup-content p {
    font-size: 16px;
    color: #333;
  }

  .nos-services {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 50px 10%;
    background-color: #000;
    color: #fff;
    text-align: left;
  }
 
  .service-content {
    display: flex;
    gap: 30px;
    align-items: center;
  }
 
  .service-image {
    width: 50%;
    border-radius: 15px;
    box-shadow: 0px 4px 8px rgba(255, 255, 255, 0.2);
  }
 
  .service-text {
    max-width: 40%;
  }
 
  .service-text h2 {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 20px;
    text-shadow: 0 0 7px rgba(255, 255, 255, 0.279), 0 0 10px rgba(255, 255, 255, 0.6);
  }
 
  .service-text p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 20px;
  }
 
  .service-btn {
    display: inline-block;
    background-color: #ff3D00;
    color: #fff;
    padding: 10px 20px;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
  }
 
  .service-btn:hover {
    background-color: #ff6D30;
  }
 

  .nos-realisations {
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    align-items: center;
    padding: 50px 10%;
    background-color: #000;
    color: #fff;
    text-align: left;
  }
 
  .realisation-content {
    display: flex;
    flex-direction: row;
    gap: 30px;
    align-items: center;
  }
 
  .realisation-text {
    max-width: 40%;
  }
 
  .realisation-text h2 {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 20px;
    text-shadow: 0 0 7px rgba(255, 255, 255, 0.279), 0 0 10px rgba(255, 255, 255, 0.6);
  }
 
  .realisation-text p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 20px;
  }
 
  .realisation-btn {
    display: inline-block;
    background-color: #ff3D00;
    color: #fff;
    padding: 10px 20px;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
  }
 
  .realisation-btn:hover {
    background-color: #ff6D30;
  }
 
  .realisation-image {
    width: 50%;
    border-radius: 15px;
    box-shadow: 0px 4px 8px rgba(255, 255, 255, 0.2);
  }


}

